blob: aa1e044f033447a2224a541bc66431f8aba07fe9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
.dramaInfoContainer {
display: flex;
flex-direction: column;
}
.dramaInfo {
display: flex;
flex-direction: column;
width: 98%;
margin: 0px auto;
}
.titleContainer {
display: flex;
justify-content: space-between;
align-items: center;
}
.titleContainer p {
color: var(--neon-green);
width: 60%;
font-family: "Quicksand";
font-weight: 1000;
font-size: 28px;
}
.titleContainer img {
width: auto;
height: auto;
border-radius: 10px;
}
.animeDescription h2 {
color: #ffffff81;
margin: 20px 0px -10px 0px;
}
.animeDescription p {
font-family: "Atkinson Hyperlegible";
color: rgba(255, 255, 255, 0.637);
}
.buttonContainer {
margin: 0px;
height: 200px;
overflow-y: auto;
border-radius: 10px;
}
.buttonHeader {
margin: 0px 10px 10px 0px;
color: #ffffff81
}
.buttonContainer button:focus {
opacity: 0.7;
transition: transform 0.2s linear;
background-color: var(--pastel-red);
transform: scale(0.9);
}
.buttonContainer::-webkit-scrollbar-thumb {
background-color: var(--soft-purple);
border-radius: 5px;
}
.dramaButton {
padding: 10px;
font-family: "Quicksand";
font-size: 14px;
margin: 5px;
width: 55px;
border-radius: 5px;
text-align: center;
border: none;
outline: none;
color: white;
background-color: #3d3d3d;
transition: background-color 0.2s linear;
cursor: pointer;
}
.dramaButton:hover {
background-color: #1f1f1f;
transition: background-color 0.2s linear
}
.infoPageContainer p {
color: white;
}
.animeDetails {
color: white;
}
.genreEntries {
margin: 3px;
padding: 4px;
border-radius: 5px;
color: var(--neon-green);
background-color: #303030;
cursor: pointer;
font-family: "Atkinson Hyperlegible";
}
.animeType span {
color: var(--light-green);
}
.animeRelease span {
color: var(--soft-purple)
}
@media screen and (max-width: 768px) {
.animeDetails {
font-size: 14px;
}
}
|